In a makefile, targets are associated with a series of commands to execute when an action is requested.
2
votes
1answer
63 views
Why doesn't make build an object file on the first run?
I have this Makefile:
CFLAGS := $(CFLAGS) -std=c99
shell: main.o shellparser.o shellscanner.o
$(CC) -o shell main.o shellparser.o shellscanner.o
main.o: main.c shellparser.h shellscanner.h
...
1
vote
2answers
165 views
Targeting an exact text match (jQuery)
I need to target multiple classes by their exact text match. Half of my code appears to work (the text has a purple background when the checkbox is unchecked), but when checking the checkbox to target ...
0
votes
0answers
47 views
android ant target before use of manifest file
While building the apk in command line using "ant release", I'm trying to generate the AndroidManifest.xml file, and have used the ant target -pre-build to do so. However, ant requires the manifest ...
0
votes
2answers
68 views
Maven: Change the “test” phase directory from local .m2 to target?
Forgive me if this is remedial, but I am still new to Maven and it's functionality.
In my project, when it "builds" and gets to the compile phase, it will create a target directory with just compiled ...
0
votes
3answers
164 views
Target android 4.1 works on previous versions?
I have a question that may seem stupid, but I have exclarecer this ...
I have an app for android that due to the use of apis had to put targeting Android 4.1.
My doubt is whether the app will work ...
0
votes
0answers
23 views
Changing iPad Application Targets' Functionalities
I have created an ipad application with In-App Purchase.
I'm doing same thing (Ads & Purchase) in single app. So, after puchasing it'll be free & not display Ads in application.
But it'll ...
1
vote
0answers
48 views
CSS3 default :target
I have the following code:
<style>
.temp {
transition:all 1s ease;
opacity: 0;
/* Don't forget the vendor specific pre-fixes! */
}
/* .temp:first-child{opacity: 1;} */
...
0
votes
1answer
34 views
Check properties ant file in a target
I'm a novice in Java.
In my Ant file, I would like to create a target "init" which checks if the properties declared exist (else it affects them a default value), but I don't have any idea how to do.
1
vote
1answer
93 views
Do I need a “cocos2d libraries” target in an xcode project?
I have been building a project based upon the book "Learning Cocos2D". When I started this project, the latest cocos2d-iphone version was 1.0.1. Since then, the latest version is 2.0. I decided to ...
0
votes
1answer
159 views
Why do mailTo links open gmail in the same window despite setting target=_blank?
I am trying to allow users of our website to click on a link and open a mail application / gmail to compose a message. I am using the mailTo method which opens my mail application on mac, however when ...
0
votes
1answer
86 views
how to set target for a file/bundle in xcconfig file
As we known, we can set target membership for a certain file/bundle in right navigator of xcode.
But now I want to set target membership in a certain configuration. So how can I set target for a ...
0
votes
0answers
89 views
Can not OneToMany target mapped in Hibernate (@OneToMany targeting an unmapped class)
I am doing a project. I am using hibernate in jboss with maven. However in relation two classes, errors are given.
I added two classes to persistence.xml and hibernate.cfg.xml.
I did'nt use ...
0
votes
1answer
97 views
Using jQuery to simulate the click of a link - outside of an iframe, which links to another domain?
In my head this should be straight forward, but after testing I've discovered that it's not as easy as I thought!
What I am trying to do is click a link outside of an iFrame, which will trigger a ...
0
votes
1answer
121 views
how can i calculate up vector from To vector and 'roll' value?
I have 2 point(2 vector) camera, one is Source, anorher and Target; So i can calculate vector To = (Target-Source).normalized();
but then i need to make Up vector, and that's seems to require one ...
0
votes
1answer
173 views
event.target/srcElement not working 100% in Chrome and Opera
I'm trying to get the target/srcElement of an HTML "area" element for an image map.
Here's what I have so far (pardon the data URI):
<map name="dpad">
<area id="dpad"shape="rect" alt="" ...
0
votes
4answers
67 views
Android, combine application components of different SDK versions
I am looking for an approach, how to combine components of different SDK versions.
For example, I have an APP that works fine with minSdkVersion="8".
But I would like to have an additional feature, ...
0
votes
0answers
87 views
target blank at google maps marker
I would like to add a marker to my google maps that links to google maps itself. It does work, but I need to let it open in another window (target="_blank").
This is the code:
var latlng = new ...
1
vote
0answers
83 views
get selected dropdown option during document.elementFromPoint() or jQery trigger-event
Any ideas how to get the selected select-option via "virtual" click-events?
Have tried it yet with document.elementFromPoint() and even with jQuery's trigger-event (with coordinates), no success!
...
0
votes
1answer
56 views
Ant how disable print taget name for foreach target
I have code below:
...
<foreach target="each-time-target" param="file">
<fileset dir="${basedir}/target" casesensitive="yes">
<include name="libs/*.jar"/>
...
0
votes
0answers
41 views
Multi Points Between one target the bend
This my first post , and I very happy if someone can help me to this problem.
I have some random points and one target let say I have 3 points and the target but also
I want to make work with more ...
0
votes
0answers
39 views
QMake relinks targets when it is unnesessary
Is it normal that QMake relinks targets in the following case:
qmake
make <- build = compile + link
make <- relink
make <- relink
...
make <- relink
NOTE: I do not change the source ...
0
votes
2answers
92 views
Change target of a link based on what is currently displayed
Again, I'm quite new to jQuery and there are still many things that seem simple yet get me stuck for hours.
Right now, I'm trying to replace the target of a link. That I know how to do. But the thing ...
2
votes
1answer
83 views
Proper method for wildcard targets in GNU Make
I am trying to write a Makefile with my source and object files separated and I can't seem to figure out the proper way to accomplish this. I have two methods that work but I'm hoping someone can ...
0
votes
0answers
38 views
set different build target in eclipse like in XCode
I know the title might be a little mis-leading so if you find better words for what I mean, please feel free to modify it. I take the concept of 'target' from XCode.
I'm an iPhone developer now ...
0
votes
2answers
55 views
Is it possible to build an iOS framework that delivers all but the UI?
Summary: I want to build three apps that are technically the same, but have a totally different design.
I would like to build iOS applications that has a custom interface, a CoreData model and some ...
0
votes
0answers
94 views
HTML Open link in one and the same window if clicked several times / already opened
if I click on a link, a new window should open (if that window isnt opened already). if I click the link again, the same window should open and not a new one, is this possible?
e.g.
opened windows: ...
0
votes
0answers
207 views
Cannot build project with MSBuild programmatically
I am trying to package a Visual Studio .csproj with MSBuild programmatically (using namespace Microsoft.Build.Evaluation).
I can correctly package this project with command like like
MSBuild ...
1
vote
1answer
101 views
UINavigationCotroller backBarButtonItem with other target than self
I am trying to change the action executed by pressing the backBarButtonItem of a Navigation Controller.
I know that i have to edit the backBarButtonItem before the next view (on which the button with ...
2
votes
0answers
32 views
multiple targets with one and only one different localisation each
My project has 6 targets to one source code base. The 6 targets are different programs with different content thanks to different pre-processor statements.
I defined 2 localisations which are French ...
0
votes
3answers
51 views
Find Related Class jQuery
I have four links, inside of primary-nav, which need to activate a corresponding slideDown element. The links have separate parent classes, .patient > a, .doctor > a, .primary > a and ...
3
votes
2answers
245 views
target node-webkit browser using jquery
I have a node-webkit app and am wondering if there is a way to target just node-webkit specifically? I need to run some functions only if the client browser is node-webkit.
Thanks
0
votes
1answer
73 views
Change weight and color of a paragraph with a highest score
What's the best way in achieving the following:
Make weight:bold + color:white for the team with the highest score. (no change in color/weight for ties)
HTML
<div class="fixture">
<div ...
5
votes
1answer
106 views
Changing PublishUrl property in csproj file
I need to be able to change the PublishUrl property in my Excel VSTO project's csproj file in order to manage which publish url is used based on the configuration that is set in the configuration ...
0
votes
1answer
118 views
PHP change post target when user logs in successfully
Here is my form that is using login.php to check if the user is registered, etc.
<form action="login.php" method="post" target="SHOW">
<ul id="login">
<li>
...
9
votes
1answer
1k views
Can't change target membership visibility in XCode 4.5
I currently try to exclude my In-App Purchase logic in an App of mine to make it reusable in other Apps of mine or even put it on a public git repository for others to use. For this purpose I follow ...
3
votes
2answers
308 views
obtain reference to _blank target window on form submit
I have a form that is opening a new window on submit:
<form id="form-id" target="_blank">
I want to access the newly created window via javascript, without manually generating a unique name ...
0
votes
2answers
124 views
JS target doesn't work ie 8
I have this code, where data is DWR object that contains rows from response servlet.
img.onclick works using IE9 but I need that it works on IE8 too. Some idea?
Thanks!
function functionA(data){
...
1
vote
0answers
150 views
how to set IOS deployment target version to a point IOS release
I want to set the IOS deployment target as 5.0.1 so that my app doesnt run on devices running 5.0 or lower. However in xcode I only see options to either chose 5.0 or 5.1. I dont see options to select ...
1
vote
5answers
154 views
Links that don't pass referrer
I want to create a list of links opening the targets in new tabs from my private page and I don't want the referring URL to be passed on.
I tried the following method, but it didn't solve the problem:
...
0
votes
0answers
54 views
Open a link in an existing window (IE)
we want to open a link in an existing window (where an ajax application is running, so a deep link on this specific window is needed to receive the data without refreshing the site).
This is the ...
0
votes
2answers
260 views
jquery how to make a clickable div open in a new window
I want to make a DIV with no content clickable for that I use this jquery code:
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
...
0
votes
1answer
65 views
Site compiled to .net 3.5 as target framework but still seems to reference .net 4.0
I have a site that I compiled to .net 3.5 as the target framework, it works fine locally, but when I upload it onto godaddy's servers I get the following error:-
System.Web.HttpParseException: Could ...
0
votes
0answers
30 views
Compiling (make-ing) third-party libraries, on Win32 for Linux-x86_64 (trying to invoke gcc-linux-x86_64/crosstool)
I'm using the cygwin shell on a Windows PC. I've downloaded some libraries to help with the ultimate goal of some CGI exectuables for my Linux x86_64 web server. The trouble is all the libraries come ...
1
vote
0answers
146 views
How to edit a shortcut's target and launch it?
I looked through and couldn't find anything that addresses exactly that;
I'm using ForceBind to force a browser to use the wi-fi connection and not the Ethernet one.
In order to launch the browser ...
2
votes
5answers
502 views
Developing apps for multiple iOS version
I am testing an app on an iPhone 4 with iOS 5.1 and an iPad 4 with iOS 6.0. I looked around and surprisingly did not find similar questions:
1- My app has some methods that have been deprecated in ...
1
vote
2answers
2k views
Javascript - Reload page after form submit with target=“_blank”
I'm trying to achive the following:
On page A we have an access restricted Link to page B. The access restriction is handled on the server side in PHP.
When a user clicks on this link to page B we ...
0
votes
1answer
39 views
CSS - Another % / px issue
I want my page to be made of two parts : a panel block on the left, and a content block on the right. The page must be stretched to fit the view port, and so must be these two blocks.
Here's the code ...
0
votes
1answer
171 views
CSS3 :target not working?
I have the following code :
<!DOCTYPE html>
<html>
<head>
<title>Void Museum</title>
<meta charset="utf-8">
<style ...
0
votes
0answers
113 views
Ant parse file and write line number of matching text
I need to parse through a file using ANT and print out the line numbers that match a particular text to another file. I have it written so that it copies the entire line out to another file so far. ...
0
votes
0answers
49 views
how do I use :target to transition to another part of a page smoothly [closed]
Trying to use CSS3 :target to smoothly transition from one part of page to another upon clicking a link that redirects to another section on that page. Having issues with this and I think it's ...



